/* ============================================================
   키움 기프트 – 메인 스타일시트
   테마: 블랙(#0a0a0a) + 골드(#c9a84c)
   ============================================================ */

/* ---------- CSS 변수 ---------- */
:root {
  --black:      #0a0a0a;
  --black-2:    #111111;
  --black-3:    #1a1a1a;
  --black-4:    #222222;
  --gold:       #c9a84c;
  --gold-light: #e2c97e;
  --gold-dark:  #a0822e;
  --white:      #ffffff;
  --gray-1:     #f5f5f5;
  --gray-2:     #e0e0e0;
  --gray-3:     #999999;
  --gray-4:     #555555;
  --text-main:  #1a1a1a;
  --text-sub:   #555555;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.18);
  --shadow-gold:0 4px 24px rgba(201,168,76,.35);
  --transition: .3s ease;
  --max-width:  1200px;
}

/* ---------- 리셋 & 기본 ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
  background: var(--white);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- 공통 래퍼 ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- 섹션 공통 ---------- */
.section { padding: 96px 0; }
.section--dark { background: var(--black-2); color: var(--white); }
.section--gray { background: var(--gray-1); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--black);
}
.section--dark .section-title { color: var(--white); }
.section-title em { color: var(--gold); font-style: normal; }
.section-desc {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--gray-4);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.section--dark .section-desc { color: var(--gray-3); }

/* ---------- 버튼 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,.5);
}
.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--black);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: .85rem; }

/* ---------- 배지 ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
}
.badge-gold { background: rgba(201,168,76,.15); color: var(--gold); border: 1px solid rgba(201,168,76,.3); }
.badge-dark { background: rgba(255,255,255,.1); color: var(--white); border: 1px solid rgba(255,255,255,.2); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,.2);
  transition: var(--transition);
}
#site-header.scrolled {
  background: rgba(10,10,10,.98);
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* 로고 */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -.02em;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.01em;
}
.logo-name span { color: var(--gold); }
.logo-slogan {
  font-size: .65rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .08em;
}

/* PC 네비 */
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 16px;
  border-radius: 8px;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
  transition: var(--transition);
}
.nav-link:hover { color: var(--gold); background: rgba(201,168,76,.08); }
.nav-link.active { color: var(--gold); }

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: .9rem;
  font-weight: 700;
}
.header-phone i { font-size: .85rem; }

/* 햄버거 */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 모바일 메뉴 */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--black-2);
  border-bottom: 1px solid rgba(201,168,76,.2);
  padding: 16px 0;
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  transition: var(--transition);
}
.mobile-menu.show {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.mobile-nav-link {
  display: block;
  padding: 14px 24px;
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.mobile-nav-link:hover {
  color: var(--gold);
  border-left-color: var(--gold);
  background: rgba(201,168,76,.05);
}
.mobile-cta {
  margin: 16px 24px 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}

/* 배경 그라디언트 오버레이 */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,168,76,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(201,168,76,.06) 0%, transparent 50%);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* 떠다니는 골드 원 */
.hero-float {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: heroFloat 8s ease-in-out infinite;
}
.hero-float-1 {
  width: 400px; height: 400px;
  background: rgba(201,168,76,.08);
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.hero-float-2 {
  width: 250px; height: 250px;
  background: rgba(201,168,76,.06);
  bottom: -50px; left: 5%;
  animation-delay: -4s;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
}

/* 히어로 텍스트 */
.hero-content { }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 50px;
  padding: 8px 18px;
  color: var(--gold);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 28px;
  animation: fadeInDown .7s ease both;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInDown .7s ease .1s both;
}
.hero-title em {
  color: var(--gold);
  font-style: normal;
  display: block;
}
.hero-title .divider {
  display: block;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: rgba(255,255,255,.7);
  margin-top: 10px;
  line-height: 1.5;
}

.hero-desc {
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,.65);
  margin-bottom: 40px;
  max-width: 500px;
  animation: fadeInDown .7s ease .2s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
  animation: fadeInDown .7s ease .3s both;
}

.hero-stats {
  display: flex;
  gap: 32px;
  animation: fadeInDown .7s ease .4s both;
}
.hero-stat { }
.hero-stat-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
}

/* 히어로 비주얼 */
.hero-visual {
  position: relative;
  animation: fadeInRight .8s ease .2s both;
}
.hero-card-main {
  background: linear-gradient(145deg, var(--black-3) 0%, var(--black-4) 100%);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(201,168,76,.08);
}
.hero-card-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-card-label::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.process-steps { display: flex; flex-direction: column; gap: 16px; }
.process-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.process-step:hover {
  background: rgba(201,168,76,.08);
  border-color: rgba(201,168,76,.2);
}
.step-num {
  width: 36px; height: 36px;
  min-width: 36px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  font-weight: 900;
  color: var(--black);
}
.step-content { flex: 1; }
.step-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.step-desc { font-size: .78rem; color: var(--gray-3); }
.step-icon { color: var(--gold); font-size: 1.1rem; }

/* 플로팅 뱃지 */
.hero-float-badge {
  position: absolute;
  background: var(--black-3);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}
.hero-float-badge-top {
  top: -20px; right: -20px;
  animation: badgeFloat 4s ease-in-out infinite;
}
.hero-float-badge-bot {
  bottom: -20px; left: -20px;
  animation: badgeFloat 4s ease-in-out infinite reverse;
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.float-badge-num {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.float-badge-text {
  font-size: .7rem;
  color: rgba(255,255,255,.6);
  margin-top: 2px;
}

/* ---------- 애니메이션 ---------- */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   TICKER STRIP
   ============================================================ */
.ticker-strip {
  background: var(--gold);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
}
.ticker-dot {
  width: 5px; height: 5px;
  background: var(--black);
  border-radius: 50%;
  opacity: .5;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   FEATURES (강점)
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-2);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  transform: scaleX(0);
  transition: var(--transition);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  border-color: rgba(201,168,76,.3);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.feature-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(201,168,76,.15) 0%, rgba(201,168,76,.05) 100%);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 20px;
}
.feature-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: .9rem;
  color: var(--text-sub);
  line-height: 1.7;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover::after { opacity: 1; }
.service-card:hover {
  border-color: rgba(201,168,76,.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.service-card.featured {
  border-color: rgba(201,168,76,.3);
  background: linear-gradient(145deg, #1e1a10 0%, var(--black-3) 100%);
}
.service-card.featured::after { opacity: 1; }
.service-num {
  font-size: .7rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .12em;
  margin-bottom: 16px;
}
.service-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.service-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.service-desc {
  font-size: .88rem;
  color: var(--gray-3);
  line-height: 1.8;
  margin-bottom: 20px;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag {
  padding: 4px 12px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--gold);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  z-index: 0;
}
.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 16px;
}
.timeline-num {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 20px;
  box-shadow: var(--shadow-gold);
  border: 3px solid var(--white);
}
.timeline-icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.timeline-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
}
.timeline-desc {
  font-size: .82rem;
  color: var(--text-sub);
  line-height: 1.7;
}
.timeline-time {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 12px;
  background: rgba(201,168,76,.12);
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold);
}

/* ============================================================
   NOTICE BAR
   ============================================================ */
.notice-bar {
  background: linear-gradient(135deg, #1a1500 0%, #2a2000 100%);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--radius-md);
  padding: 18px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 0 0 32px;
}
.notice-icon { color: var(--gold); font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }
.notice-content { }
.notice-title { font-size: .9rem; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.notice-text { font-size: .82rem; color: rgba(255,255,255,.65); line-height: 1.7; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-2);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  gap: 20px;
  transition: var(--transition);
}
.faq-question:hover .faq-q-text { color: var(--gold); }
.faq-q-num {
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 28px;
}
.faq-q-text {
  flex: 1;
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  transition: var(--transition);
}
.faq-toggle {
  width: 28px; height: 28px;
  background: var(--gray-1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-4);
  font-size: .85rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-toggle {
  background: var(--gold);
  color: var(--black);
  transform: rotate(180deg);
}
.faq-answer {
  display: none;
  padding: 0 0 24px 28px;
  font-size: .92rem;
  color: var(--text-sub);
  line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(201,168,76,.2);
  transform: translateY(-3px);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testimonial-stars i { color: var(--gold); font-size: .85rem; }
.testimonial-text {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  line-height: 1.8;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  font-weight: 900;
  color: var(--black);
}
.author-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
}
.author-meta {
  font-size: .75rem;
  color: var(--gray-3);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--black) 0%, #1a1300 50%, var(--black) 100%);
  border-top: 1px solid rgba(201,168,76,.15);
  border-bottom: 1px solid rgba(201,168,76,.15);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at center, rgba(201,168,76,.08) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-title em { color: var(--gold); font-style: normal; }
.cta-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  max-width: 560px;
  margin: 0 auto 44px;
}
.cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}
.cta-phone-num {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: .02em;
}
.cta-phone-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--black);
  animation: ring 3s ease infinite;
}
@keyframes ring {
  0%, 100% { transform: rotate(0); }
  10% { transform: rotate(-15deg); }
  20% { transform: rotate(15deg); }
  30% { transform: rotate(-10deg); }
  40% { transform: rotate(10deg); }
  50% { transform: rotate(0); }
}
.cta-hours {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-top: 12px;
}
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   BLOG INFO CARD (imweb 양식 기반)
   ============================================================ */
.col:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(201,168,76,.25) !important;
  border-color: rgba(201,168,76,.35) !important;
}
.col a:hover span[itemprop="name"] {
  color: var(--gold-dark) !important;
}

@media (max-width: 768px) {
  .row > .col {
    flex: 1 1 100% !important;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .row > .col {
    flex: 1 1 calc(50% - 20px) !important;
  }
}

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover {
  border-color: rgba(201,168,76,.3);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.blog-card-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.blog-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.blog-card:hover .blog-card-thumb img { transform: scale(1.06); }
.blog-card-cat {
  position: absolute;
  top: 14px; left: 14px;
  padding: 5px 12px;
  background: var(--gold);
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--black);
}
.blog-card-body { padding: 24px; }
.blog-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-excerpt {
  font-size: .85rem;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: var(--gray-3);
}
.blog-card-date { display: flex; align-items: center; gap: 5px; }
.blog-card-more { color: var(--gold); font-weight: 700; font-size: .8rem; }
.blog-card-more:hover { text-decoration: underline; }

/* ============================================================
   BLOG LIST PAGE
   ============================================================ */
.blog-hero {
  background: var(--black);
  padding: 120px 0 60px;
  text-align: center;
}
.blog-hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--white);
}
.blog-hero-title em { color: var(--gold); font-style: normal; }
.blog-hero-desc {
  margin-top: 12px;
  color: rgba(255,255,255,.6);
  font-size: 1rem;
}
.blog-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 36px 0 0;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.65);
  transition: var(--transition);
  cursor: pointer;
  background: transparent;
  font-family: inherit;
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,.08);
}
.blog-main { padding: 64px 0 96px; }
.blog-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ============================================================
   BLOG POST PAGE
   ============================================================ */
.post-hero {
  background: var(--black);
  padding: 120px 0 60px;
}
.post-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 24px;
}
.post-breadcrumb a { color: var(--gold); }
.post-breadcrumb span { color: rgba(255,255,255,.3); }
.post-cat-badge {
  display: inline-block;
  padding: 5px 14px;
  background: var(--gold);
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 18px;
}
.post-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
  max-width: 820px;
  margin-bottom: 20px;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.5);
  font-size: .82rem;
}
.post-meta span { display: flex; align-items: center; gap: 6px; }
.post-meta i { color: var(--gold); }

.post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  padding: 64px 0 96px;
  align-items: start;
}
.post-thumb {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  aspect-ratio: 16/9;
}
.post-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* 포스트 본문 */
.post-body { line-height: 1.9; font-size: 1rem; color: var(--text-main); }
.post-body h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.post-body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--black);
  margin: 28px 0 12px;
}
.post-body p { margin-bottom: 20px; }
.post-body ul { margin: 16px 0 20px 20px; }
.post-body ul li {
  list-style: disc;
  color: var(--text-sub);
  margin-bottom: 8px;
  font-size: .95rem;
}
.post-body ol { margin: 16px 0 20px 20px; }
.post-body ol li {
  list-style: decimal;
  color: var(--text-sub);
  margin-bottom: 8px;
  font-size: .95rem;
}
.post-body blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 24px;
  background: rgba(201,168,76,.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
  color: var(--text-sub);
  font-style: italic;
}
.post-body .highlight-box {
  background: linear-gradient(135deg, rgba(201,168,76,.1) 0%, rgba(201,168,76,.05) 100%);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin: 28px 0;
}
.post-body .highlight-box strong { color: var(--gold-dark); }
.post-body strong { color: var(--black); font-weight: 700; }
.post-body a { color: var(--gold-dark); text-decoration: underline; }

/* 사이드바 */
.post-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget {
  background: var(--gray-1);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--gray-2);
}
.sidebar-widget-title {
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.sidebar-cta {
  background: var(--black);
  color: var(--white);
  border-color: transparent;
  text-align: center;
}
.sidebar-cta .sidebar-widget-title { color: var(--gold); }
.sidebar-phone {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  margin: 12px 0 16px;
  display: block;
  text-align: center;
}
.related-list { display: flex; flex-direction: column; gap: 12px; }
.related-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.related-item:hover { background: var(--white); }
.related-thumb {
  width: 60px; height: 60px;
  min-width: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.related-title {
  font-size: .8rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-meta { font-size: .72rem; color: var(--gray-3); margin-top: 3px; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand { }
.footer-logo-wrap { margin-bottom: 16px; }
.footer-desc {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.65);
  font-size: .85rem;
  margin-bottom: 10px;
}
.footer-contact-item i { color: var(--gold); width: 16px; }
.footer-contact-item strong { color: var(--white); }
.footer-col-title {
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-link:hover { color: var(--gold); }
.footer-link::before { content: '›'; color: var(--gold); font-weight: 700; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}
.footer-copy strong { color: var(--gold); }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-link {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  transition: var(--transition);
}
.footer-legal-link:hover { color: var(--gold); }
.footer-disclaimer {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  font-size: .72rem;
  color: rgba(255,255,255,.2);
  line-height: 1.8;
  text-align: center;
}

/* ============================================================
   FIXED BOTTOM BAR (전화 + 문자 + 전화번호)
   ============================================================ */
.fixed-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: stretch;
  height: 64px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.35);
}

/* 전화번호 표시 영역 */
.fbb-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--black);
  border-top: 2px solid rgba(201,168,76,.3);
  padding: 0 24px;
  flex: 0 0 auto;
  min-width: 210px;
}
.fbb-phone i {
  color: var(--gold);
  font-size: 1rem;
  animation: ring 3s ease infinite;
}
.fbb-phone-num {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: .04em;
  white-space: nowrap;
  text-decoration: none;
}
.fbb-phone-num:hover { color: var(--gold-light); }

/* 전화 상담 버튼 */
.fbb-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  font-size: 1.05rem;
  font-weight: 900;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: .02em;
  animation: callPulse 2.5s ease infinite;
}
.fbb-call:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--black);
}
.fbb-call i { font-size: 1.1rem; }

/* 문자 상담 버튼 */
.fbb-sms {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--black-3);
  border-top: 2px solid rgba(201,168,76,.4);
  border-left: 1px solid rgba(201,168,76,.15);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: .02em;
}
.fbb-sms:hover {
  background: var(--black-4);
  color: var(--gold);
}
.fbb-sms i { font-size: 1.1rem; color: var(--gold); }

/* 맨 위로 버튼 */
.fbb-top {
  flex: 0 0 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-4);
  border-top: 2px solid rgba(255,255,255,.08);
  border-left: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 0;
}
.fbb-top:hover { color: var(--gold); background: var(--black-3); }

/* 바 등장 애니메이션 */
.fixed-bottom-bar {
  transform: translateY(0);          /* 기본: 항상 보임 */
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.fixed-bottom-bar.visible {
  transform: translateY(0);
}

@keyframes callPulse {
  0%, 100% { box-shadow: inset 0 0 0 0 rgba(201,168,76,.0); }
  50%       { box-shadow: inset 0 0 0 3px rgba(201,168,76,.35); }
}

/* 모바일 조정 */
@media (max-width: 600px) {
  .fbb-phone {
    display: none;
  }
  .fixed-bottom-bar {
    height: 58px;
  }
  .fbb-call,
  .fbb-sms {
    font-size: .95rem;
  }
}

/* body 하단 여백 (바 높이만큼) */
body { padding-bottom: 64px; }
@media (max-width: 600px) { body { padding-bottom: 58px; } }

/* ——— 기존 floating-btns 제거 ——— */
.floating-btns { display: none; }

/* ============================================================
   SCROLL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-full-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-timeline::before { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .main-nav { display: none; }
  .header-cta .btn { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .hero-visual { display: none; }
  .hero-stats { gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-full-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .process-timeline { grid-template-columns: 1fr; gap: 20px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { gap: 16px; }
  .header-phone { display: none; }
}
