/* ============================================
   정책자금 지원센터 - REFINED ENERGETIC
   Bold · Dynamic · Friendly · Clean
   ============================================ */

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

:root {
  --primary:    #FF4D00;
  --primary2:   #FF7A00;
  --dark:       #111111;
  --dark2:      #1A1A2E;
  --accent:     #FFD600;
  --green:      #00B248;
  --blue:       #1565C0;
  --white:      #FFFFFF;
  --gray-light: #F7F7F7;
  --gray:       #888;
  --text:       #1E1E1E;
  --radius:     14px;
  --radius-lg:  24px;
  --shadow:     0 6px 28px rgba(0,0,0,0.09);
  --shadow-hot: 0 6px 32px rgba(255,77,0,0.22);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

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

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ============ TICKER ============ */
.top-ticker {
  background: var(--dark);
  color: #fff;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  z-index: 1001;
}
.ticker-inner {
  display: flex;
  align-items: center;
  gap: 0;
}
.ticker-tag {
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 0 20px 20px 0;
  white-space: nowrap;
  margin-right: 20px;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.ticker-track {
  overflow: hidden;
  flex: 1;
}
.ticker-list {
  display: flex;
  gap: 80px;
  animation: tickerMove 30s linear infinite;
  white-space: nowrap;
}
.ticker-list span {
  font-size: 0.82rem;
  opacity: 0.85;
  font-weight: 500;
}
.ticker-list span strong { color: var(--accent); }
@keyframes tickerMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ HEADER / NAV ============ */
#site-header {
  position: fixed;
  top: 40px;
  left: 0; right: 0;
  z-index: 1000;
  transition: all 0.35s ease;
}
#site-header.scrolled {
  top: 0;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 900;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.logo-mark::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: rgba(255,255,255,0.15);
  transform: rotate(45deg) translateY(-60%);
}
.logo-texts strong {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}
.logo-texts small {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.on {
  color: #fff;
  background: rgba(255,255,255,0.1);
}
.nav-links .hot-link {
  color: var(--accent);
  background: rgba(255,214,0,0.1);
}
.nav-links .hot-link:hover { background: rgba(255,214,0,0.2); }

/* dropdown */
.nav-drop { position: relative; }
.nav-drop > a { display: flex; align-items: center; gap: 4px; }
.drop-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 8px;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s;
}
.nav-drop:hover .drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.drop-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  border-radius: 8px;
  width: 100%;
}
.drop-menu a:hover { background: rgba(255,255,255,0.08); color: #fff; }

.nav-cta-group { display: flex; align-items: center; gap: 10px; }
.btn-nav-call {
  display: flex; align-items: center; gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.88rem;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-nav-call:hover {
  background: var(--primary2);
  transform: translateY(-1px);
  box-shadow: var(--shadow-hot);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 34px; padding: 4px;
}
.hamburger span {
  display: block; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  background: var(--dark);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 140px 0 80px;
}
.hero-bg-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob1 { width: 600px; height: 600px; background: var(--primary); top: -200px; right: -100px; animation-delay: 0s; }
.blob2 { width: 400px; height: 400px; background: var(--primary2); bottom: -100px; left: -100px; animation-delay: -3s; }
.blob3 { width: 300px; height: 300px; background: var(--accent); top: 40%; left: 40%; animation-delay: -6s; opacity: 0.15; }
@keyframes blobFloat {
  0%, 100% { transform: scale(1) translate(0, 0); }
  33% { transform: scale(1.08) translate(30px, -20px); }
  66% { transform: scale(0.95) translate(-20px, 30px); }
}

.hero-content {
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--accent);
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 28px;
}
.hero-eyebrow span { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.5;transform:scale(1.5);} }

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -2px;
}
.hero-title .line-accent {
  display: block;
  background: linear-gradient(90deg, var(--primary), var(--primary2), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .line-white { display: block; }
.hero-title .line-outline {
  display: block;
  -webkit-text-stroke: 2px rgba(255,255,255,0.4);
  color: transparent;
}

.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 44px;
}
.hero-desc strong { color: rgba(255,255,255,0.95); }

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.btn-fire {
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
  padding: 16px 32px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 800;
  transition: all 0.25s;
  box-shadow: 0 6px 30px rgba(255,77,0,0.45);
  position: relative;
  overflow: hidden;
}
.btn-fire::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.4s;
}
.btn-fire:hover::before { left: 100%; }
.btn-fire:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(255,77,0,0.55); }
.btn-ghost {
  display: flex; align-items: center; gap: 10px;
  border: 2px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
  padding: 16px 32px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.25s;
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.hero-numbers {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  max-width: 520px;
  backdrop-filter: blur(10px);
}
.h-num-item {
  flex: 1;
  padding: 18px 14px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.h-num-item:last-child { border-right: none; }
.h-num-val {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.h-num-unit { font-size: 1rem; font-weight: 700; color: var(--primary2); }
.h-num-lbl { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 6px; }

.hero-visual {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 44%;
  max-width: 560px;
  pointer-events: none;
}
.hero-card-stack {
  position: relative;
  padding: 40px;
}
.hc {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 22px 26px;
  color: #fff;
  margin-bottom: 16px;
  transition: transform 0.3s;
  animation: cardFloat 4s ease-in-out infinite;
}
.hc:nth-child(2) { animation-delay: -1.3s; }
.hc:nth-child(3) { animation-delay: -2.6s; }
@keyframes cardFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hc-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.hc-tag {
  font-size: 0.72rem; font-weight: 700;
  padding: 3px 10px; border-radius: 10px;
}
.hc-tag.green { background: rgba(0,200,83,0.2); color: var(--green); }
.hc-tag.orange { background: rgba(255,140,0,0.2); color: var(--primary2); }
.hc-tag.yellow { background: rgba(255,214,0,0.2); color: var(--accent); }
.hc h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.hc p { font-size: 0.8rem; opacity: 0.65; }
.hc-amount {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
  margin-top: 8px;
}

/* ============ URGENCY BAND ============ */
.urgency-band {
  background: linear-gradient(135deg, var(--primary), #ff6b00);
  padding: 0;
  overflow: hidden;
}
.urgency-inner {
  display: flex;
  align-items: stretch;
  min-height: 80px;
}
.urgency-label {
  background: rgba(0,0,0,0.2);
  display: flex; align-items: center;
  padding: 0 28px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 2px;
  gap: 8px;
  flex-shrink: 0;
}
.urgency-label i { animation: shake 1.5s ease-in-out infinite; }
@keyframes shake {
  0%,100%{transform:rotate(0deg);}
  20%{transform:rotate(-10deg);}
  40%{transform:rotate(10deg);}
  60%{transform:rotate(-5deg);}
  80%{transform:rotate(5deg);}
}
.urgency-items {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  overflow: hidden;
}
.urgency-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  flex: 1;
  min-height: 80px;
}
.urgency-item:last-child { border-right: none; }
.ui-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ui-text strong { display: block; font-size: 1rem; font-weight: 900; }
.ui-text span { font-size: 0.78rem; opacity: 0.8; }
.urgency-cta {
  display: flex; align-items: center;
  padding: 0 24px;
  flex-shrink: 0;
}
.btn-urgency {
  background: #fff;
  color: var(--primary);
  padding: 11px 22px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.88rem;
  white-space: nowrap;
  transition: all 0.2s;
}
.btn-urgency:hover { transform: scale(1.04); }

/* ============ SECTION BASE ============ */
section { padding: 88px 0; }
.sec-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sec-tag::before {
  content: '';
  display: block;
  width: 20px; height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.sec-title {
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}
.sec-title em { font-style: normal; color: var(--primary); }
.sec-sub {
  font-size: 0.97rem;
  color: var(--gray);
  line-height: 1.8;
  max-width: 560px;
}

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============ WHY (DARK) ============ */
.why-section {
  background: var(--dark);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary2), var(--accent));
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.why-left .sec-title { color: #fff; }
.why-left .sec-title em { color: var(--accent); }
.why-left .sec-sub { color: rgba(255,255,255,0.55); }

.quote-block {
  margin: 32px 0;
  padding: 24px 28px;
  border-left: 4px solid var(--primary);
  background: rgba(255,77,0,0.08);
  border-radius: 0 12px 12px 0;
}
.quote-block p {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.7;
}
.quote-block cite {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  font-style: normal;
  display: block;
  margin-top: 8px;
}

.ceo-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}
.ceo-avatar-wrap {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(255,77,0,0.25);
}
.ceo-info h3 { font-size: 1.1rem; font-weight: 800; color: #fff; }
.ceo-info p { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 3px; }
.ceo-badges { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
}

.why-right { display: flex; flex-direction: column; gap: 10px; }
.diff-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.25s;
  cursor: default;
}
.diff-item:hover {
  background: rgba(255,77,0,0.08);
  border-color: rgba(255,77,0,0.25);
  transform: translateX(6px);
}
.diff-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.diff-icon.fire { background: rgba(255,77,0,0.2); color: var(--primary); }
.diff-icon.money { background: rgba(255,214,0,0.15); color: var(--accent); }
.diff-icon.shield { background: rgba(0,200,83,0.15); color: var(--green); }
.diff-icon.search { background: rgba(21,101,192,0.2); color: #42a5f5; }
.diff-icon.star { background: rgba(255,140,0,0.15); color: var(--primary2); }
.diff-text h4 { font-size: 0.97rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.diff-text p { font-size: 0.83rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.diff-vs {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 8px;
  font-weight: 700;
  background: rgba(255,77,0,0.15);
  color: var(--primary);
  white-space: nowrap;
}

/* ============ PROGRAMS ============ */
.programs-section { background: var(--gray-light); }
.prog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.prog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.prog-card:hover { transform: translateY(-7px); box-shadow: 0 16px 48px rgba(0,0,0,0.13); }
.prog-top {
  padding: 32px 28px 24px;
  position: relative;
  overflow: hidden;
}
.prog-top::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  opacity: 0.08;
}
.prog-card.card-gyeonggi .prog-top { background: linear-gradient(135deg, #1b5e20, #2e7d32); }
.prog-card.card-gyeonggi .prog-top::after { background: #fff; }
.prog-card.card-gwangju .prog-top { background: linear-gradient(135deg, #b71c1c, #c62828); }
.prog-card.card-gwangju .prog-top::after { background: #fff; }
.prog-card.card-consult .prog-top { background: linear-gradient(135deg, var(--dark2), #16213e); }
.prog-card.card-consult .prog-top::after { background: var(--primary); width: 160px; height: 160px; opacity: 0.15; }

.prog-region {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 700;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  padding: 4px 12px; border-radius: 20px;
  margin-bottom: 14px;
}
.prog-top h3 {
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 12px;
}
.prog-amount-big {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.prog-amount-big small { font-size: 1rem; opacity: 0.7; font-weight: 600; }
.prog-body { padding: 24px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.prog-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; flex: 1; }
.prog-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: #444;
}
.prog-feature i { color: var(--green); font-size: 0.85rem; flex-shrink: 0; }
.btn-prog {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.92rem;
  transition: all 0.25s;
}
.card-gyeonggi .btn-prog { background: #1b5e20; color: #fff; }
.card-gyeonggi .btn-prog:hover { background: #2e7d32; }
.card-gwangju .btn-prog { background: #b71c1c; color: #fff; }
.card-gwangju .btn-prog:hover { background: #c62828; }
.card-consult .btn-prog {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
  box-shadow: var(--shadow-hot);
}
.card-consult .btn-prog:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(255,77,0,0.4); }

.prog-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--accent);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 20px;
}

/* ============ SERVICES ============ */
.services-section { background: #fff; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.svc-card {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 2px solid #f0f0f0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  display: block;
  color: var(--text);
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  transition: height 0.3s;
}
.svc-card.s-tax::before { background: #1565c0; }
.svc-card.s-labor::before { background: #2e7d32; }
.svc-card.s-policy::before { background: linear-gradient(90deg, var(--primary), var(--primary2)); }
.svc-card.s-onepoint::before { background: var(--accent); }
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.svc-card.s-policy {
  background: linear-gradient(135deg, #fff5f0 0%, #fff 100%);
  border-color: rgba(255,77,0,0.2);
}
.svc-card.s-policy .svc-hot {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
}
.svc-num {
  font-size: 3.5rem;
  font-weight: 900;
  opacity: 0.06;
  position: absolute;
  top: 10px; right: 20px;
  line-height: 1;
}
.svc-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 18px;
}
.s-tax .svc-icon { background: #1565c0; }
.s-labor .svc-icon { background: #2e7d32; }
.s-policy .svc-icon { background: linear-gradient(135deg, var(--primary), var(--primary2)); }
.s-onepoint .svc-icon { background: var(--dark); }
.svc-card h3 { font-size: 1.2rem; font-weight: 900; margin-bottom: 10px; }
.svc-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.svc-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 20px;
  background: #f5f5f5;
  color: #555;
}
.s-policy .svc-tag { background: rgba(255,77,0,0.08); color: var(--primary); }

/* ============ PROCESS ============ */
.process-section {
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.process-section::after {
  content: 'PROCESS';
  position: absolute;
  bottom: -40px; right: -20px;
  font-size: 10rem;
  font-weight: 900;
  opacity: 0.03;
  letter-spacing: -5px;
  user-select: none;
}
.proc-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}
.proc-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(100%/12);
  right: calc(100%/12);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0.3;
  z-index: 0;
}
.proc-step {
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.proc-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 16px;
  position: relative;
  transition: all 0.3s;
}
.proc-step:hover .proc-circle { transform: scale(1.15); }
.proc-step:nth-child(1) .proc-circle { background: rgba(255,77,0,0.2); color: var(--primary); border: 2px solid var(--primary); }
.proc-step:nth-child(2) .proc-circle { background: rgba(255,107,0,0.2); color: #ff6b00; border: 2px solid #ff6b00; }
.proc-step:nth-child(3) .proc-circle { background: rgba(255,140,0,0.2); color: var(--primary2); border: 2px solid var(--primary2); }
.proc-step:nth-child(4) .proc-circle { background: rgba(255,180,0,0.2); color: #ffb400; border: 2px solid #ffb400; }
.proc-step:nth-child(5) .proc-circle { background: rgba(255,214,0,0.2); color: var(--accent); border: 2px solid var(--accent); }
.proc-step:nth-child(6) .proc-circle { background: rgba(0,200,83,0.2); color: var(--green); border: 2px solid var(--green); }
.proc-num {
  position: absolute;
  top: -4px; right: -4px;
  width: 20px; height: 20px;
  background: var(--primary);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.proc-step:last-child .proc-num { background: var(--green); }
.proc-step h4 { font-size: 0.88rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.proc-step p { font-size: 0.75rem; color: rgba(255,255,255,0.45); line-height: 1.5; }

/* ============ METRICS ============ */
.metrics-section { background: var(--gray-light); }
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.metric-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.metric-card:hover { transform: translateY(-6px); }
.metric-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
}
.metric-card:nth-child(1)::before { background: var(--primary); }
.metric-card:nth-child(2)::before { background: var(--accent); }
.metric-card:nth-child(3)::before { background: var(--green); }
.metric-card:nth-child(4)::before { background: #1565c0; }
.m-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.m-num {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}
.metric-card:nth-child(1) .m-num { color: var(--primary); }
.metric-card:nth-child(2) .m-num { color: #c8a000; }
.metric-card:nth-child(3) .m-num { color: var(--green); }
.metric-card:nth-child(4) .m-num { color: #1565c0; }
.m-unit { font-size: 1.1rem; font-weight: 700; }
.m-label { font-size: 0.85rem; color: var(--gray); margin-top: 8px; }

/* ============ TESTIMONIALS ============ */
.reviews-section { background: #fff; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.review-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: all 0.3s;
}
.review-card:hover { background: #fff; box-shadow: var(--shadow); transform: translateY(-4px); }
.review-quote {
  font-size: 3rem;
  color: var(--primary);
  line-height: 1;
  font-weight: 900;
  margin-bottom: 10px;
  opacity: 0.3;
}
.review-text { font-size: 0.92rem; color: #444; line-height: 1.8; margin-bottom: 20px; }
.review-stars { color: #FFB800; font-size: 0.85rem; margin-bottom: 14px; }
.review-author {
  display: flex; align-items: center; gap: 10px;
}
.r-ava {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: #fff;
  font-weight: 800;
  flex-shrink: 0;
}
.r-name { font-size: 0.9rem; font-weight: 700; }
.r-biz { font-size: 0.78rem; color: var(--gray); margin-top: 1px; }

/* ============ FAQ ============ */
.faq-section { background: var(--gray-light); }
.faq-wrap {
  max-width: 820px;
  margin: 44px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--primary); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  gap: 16px;
  transition: background 0.2s;
}
.faq-q:hover { background: #fafafa; }
.faq-item.open .faq-q { color: var(--primary); }
.faq-q-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: all 0.3s;
  color: var(--gray);
}
.faq-item.open .faq-q-icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: #555;
  line-height: 1.8;
  border-top: 1px solid #f0f0f0;
  padding-top: 16px;
}

/* ============ CTA BOTTOM ============ */
.cta-section {
  background: var(--dark);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,214,0,0.1);
  border: 1px solid rgba(255,214,0,0.3);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.2;
}
.cta-title em { font-style: normal; color: var(--primary); }
.cta-desc { font-size: 1.05rem; color: rgba(255,255,255,0.55); margin-bottom: 48px; line-height: 1.8; }
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-cta-main {
  display: flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
  padding: 18px 36px;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 800;
  transition: all 0.25s;
  box-shadow: 0 8px 40px rgba(255,77,0,0.4);
}
.btn-cta-main:hover { transform: translateY(-3px); box-shadow: 0 14px 50px rgba(255,77,0,0.5); }
.btn-cta-kakao {
  display: flex; align-items: center; gap: 12px;
  background: #FEE500;
  color: #3A1D1D;
  padding: 18px 36px;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 800;
  transition: all 0.25s;
}
.btn-cta-kakao:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(254,229,0,0.3); }
.btn-cta-ghost {
  display: flex; align-items: center; gap: 12px;
  border: 2px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  padding: 18px 36px;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 700;
  transition: all 0.25s;
}
.btn-cta-ghost:hover { border-color: rgba(255,255,255,0.5); color: #fff; transform: translateY(-2px); }

.cta-contact-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.cta-contact-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}
.cta-contact-item i { color: var(--primary2); }
.cta-contact-item strong { color: rgba(255,255,255,0.85); font-weight: 700; }

/* ============ FOOTER ============ */
footer {
  background: #080808;
  padding: 56px 0 0;
  color: rgba(255,255,255,0.6);
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
/* 새 푸터 로고 + 설명 (index.html 방식) */
.foot-logo-mark {
  width: 42px; height: 42px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #fff; font-weight: 900;
  margin-bottom: 14px;
}
.foot-desc {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.8;
  margin-bottom: 18px;
}
/* 구버전 호환 */
.foot-brand .logo-mark { width: 42px; height: 42px; font-size: 1rem; margin-bottom: 14px; }
.foot-brand p { font-size: 0.84rem; line-height: 1.8; margin-bottom: 18px; }
.foot-contacts { display: flex; flex-direction: column; gap: 9px; }
.foot-contacts a {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.foot-contacts a:hover { color: var(--primary2); }
.foot-contacts a strong { color: rgba(255,255,255,0.9); font-weight: 700; }
.foot-col h4 { font-size: 0.85rem; font-weight: 800; color: #fff; margin-bottom: 16px; letter-spacing: 1px; }
.foot-col ul { display: flex; flex-direction: column; gap: 10px; }
.foot-col a { font-size: 0.84rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.foot-col a:hover { color: rgba(255,255,255,0.9); }
.foot-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 8px;
}
.foot-disc { opacity: 0.35; font-size: 0.75rem; max-width: 500px; line-height: 1.6; }

/* ============ FLOATING ============ */
.floats {
  position: fixed;
  right: 20px; bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 900;
}
.fl-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2px;
  font-size: 0.6rem; font-weight: 700;
  box-shadow: 0 4px 18px rgba(0,0,0,0.2);
  transition: all 0.22s;
  position: relative;
  text-decoration: none;
}
.fl-btn:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 7px 24px rgba(0,0,0,0.28); }
.fl-btn i, .fl-btn svg { font-size: 1.1rem; }
.fl-call  { background: var(--primary); color: #fff; }
.fl-kakao { background: #FEE500; color: #3A1D1D; }
.fl-form  { background: var(--dark); color: #fff; border: 1px solid rgba(255,255,255,0.1); }
.fl-pulse { position: relative; }
.fl-pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--primary);
  animation: ripple 2.2s ease-out infinite;
  z-index: -1;
}
@keyframes ripple {
  0%   { transform: scale(1);   opacity: 0.5; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ============ SUBPAGE HERO ============ */
.sub-hero {
  padding: 120px 0 64px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.sub-hero.sh-gyeonggi { background: linear-gradient(135deg, #1a3a1a 0%, #2e7d32 100%); }
.sub-hero.sh-gwangju { background: linear-gradient(135deg, #3a1a1a 0%, #c62828 100%); }
.sub-hero.sh-services { background: linear-gradient(135deg, #0a0a2e 0%, #1a237e 100%); }
.sub-hero.sh-consult { background: linear-gradient(135deg, var(--dark), #1a0a2e); }
.sub-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent, transparent 40px,
    rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 41px
  );
}
.sub-hero-inner { position: relative; z-index: 1; max-width: 720px; }
.sh-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.sh-breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.sh-breadcrumb a:hover { color: #fff; }
.sh-breadcrumb i { font-size: 0.65rem; }
.sh-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.sub-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.sub-hero h1 em { font-style: normal; color: var(--accent); }
.sub-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 28px;
}
.sh-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.sh-btn-primary {
  display: flex; align-items: center; gap: 8px;
  background: var(--accent);
  color: var(--dark);
  padding: 13px 26px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.sh-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(255,214,0,0.4); }
.sh-btn-outline {
  display: flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
  padding: 13px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.sh-btn-outline:hover { border-color: rgba(255,255,255,0.7); color: #fff; }

/* ============ SUMMARY STRIP ============ */
.summary-strip { padding: 0; }
.ss-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--dark);
}
.ss-item {
  padding: 24px 20px;
  display: flex; align-items: center; gap: 14px;
  border-right: 1px solid rgba(255,255,255,0.07);
  color: #fff;
}
.ss-item:last-child { border-right: none; }
.ss-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.ss-val { font-size: 1.3rem; font-weight: 900; color: var(--accent); line-height: 1.2; }
.ss-lbl { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* ============ DETAIL CONTENT ============ */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
  padding: 80px 0;
}
.detail-block {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid #eee;
  margin-bottom: 24px;
}
.detail-block:last-child { margin-bottom: 0; }
.db-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f5f5f5;
  display: flex; align-items: center; gap: 10px;
}
.db-title i { color: var(--primary); }

.req-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.req-box {
  border-radius: 12px;
  padding: 20px;
  border: 2px solid;
}
.req-box.r-company { border-color: #1565c0; background: #e8f0fe; }
.req-box.r-worker { border-color: #2e7d32; background: #e8f5e9; }
.req-box h4 {
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 6px;
}
.r-company h4 { color: #1565c0; }
.r-worker h4 { color: #2e7d32; }
.req-list li {
  font-size: 0.85rem;
  color: #444;
  padding: 5px 0 5px 18px;
  position: relative;
  border-bottom: 1px dashed rgba(0,0,0,0.06);
}
.req-list li:last-child { border-bottom: none; }
.req-list li::before {
  content: '✓';
  position: absolute; left: 0;
  font-weight: 700;
}
.r-company .req-list li::before { color: #1565c0; }
.r-worker .req-list li::before { color: #2e7d32; }

.amount-hero {
  background: var(--dark);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.amount-hero::before {
  content: '₩';
  position: absolute;
  font-size: 8rem;
  font-weight: 900;
  opacity: 0.04;
  color: #fff;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.ah-label { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.ah-value { font-size: 3.5rem; font-weight: 900; color: var(--accent); line-height: 1; }
.ah-sub { font-size: 1rem; color: rgba(255,255,255,0.6); margin-top: 8px; }
.ah-max {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: center; align-items: center; gap: 8px;
  flex-wrap: wrap;
}
.ah-max-box {
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px 16px;
  text-align: center;
  min-width: 80px;
}
.ah-max-box strong { display: block; font-size: 1rem; font-weight: 800; color: #fff; }
.ah-max-box span { font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.ah-arrow { color: rgba(255,255,255,0.3); font-size: 1rem; }
.ah-total {
  background: var(--primary);
  border-radius: 10px;
  padding: 10px 16px;
  text-align: center;
}
.ah-total strong { display: block; font-size: 1.15rem; font-weight: 900; color: #fff; }
.ah-total span { font-size: 0.72rem; color: rgba(255,255,255,0.7); }

.docs-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.doc-row {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  background: #fafafa;
  border-radius: 10px;
  border: 1px solid #eee;
}
.doc-n {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.doc-row strong { font-size: 0.84rem; font-weight: 600; display: block; color: #222; }
.doc-row span { font-size: 0.75rem; color: #999; }

.alert-box {
  border-radius: 12px;
  padding: 16px 20px;
  display: flex; align-items: flex-start; gap: 12px;
  margin-top: 16px;
  font-size: 0.88rem;
  line-height: 1.7;
}
.alert-box i { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.alert-box.a-yellow { background: #fffde7; border-left: 4px solid #f9a825; color: #5d4037; }
.alert-box.a-yellow i { color: #f9a825; }
.alert-box.a-green { background: #e8f5e9; border-left: 4px solid #2e7d32; color: #1b5e20; }
.alert-box.a-green i { color: #2e7d32; }
.alert-box.a-red { background: #fce4ec; border-left: 4px solid #c62828; color: #7f0000; }
.alert-box.a-red i { color: #c62828; }
.alert-box.a-blue { background: #e3f2fd; border-left: 4px solid #1565c0; color: #0d47a1; }
.alert-box.a-blue i { color: #1565c0; }

.cautions { display: flex; flex-direction: column; gap: 12px; }
.caution-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px;
  background: #fafafa;
  border-radius: 12px;
  border-left: 3px solid var(--primary);
}
.caution-icon {
  width: 38px; height: 38px;
  background: rgba(255,77,0,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.caution-row h5 { font-size: 0.92rem; font-weight: 700; margin-bottom: 3px; }
.caution-row p { font-size: 0.83rem; color: #666; line-height: 1.6; }

/* SIDEBAR */
.detail-sidebar { position: relative; }
.sidebar-stick { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 16px; }
.sb-consult {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hot);
}
.sb-consult-top {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  padding: 24px 22px;
  color: #fff;
}
.sb-consult-top h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; line-height: 1.4; }
.sb-consult-top p { font-size: 0.83rem; opacity: 0.8; line-height: 1.6; }
.sb-consult-body {
  background: #fff;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sb-btn-call, .sb-btn-form {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.9rem;
  transition: all 0.2s;
  width: 100%;
}
.sb-btn-call { background: var(--dark); color: #fff; }
.sb-btn-call:hover { opacity: 0.85; }
.sb-btn-form { background: var(--primary); color: #fff; }
.sb-btn-form:hover { background: var(--primary2); }
.sb-kakao {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #FEE500;
  color: #3A1D1D;
  padding: 11px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.85rem;
  transition: all 0.2s;
  width: 100%;
}
.sb-kakao:hover { filter: brightness(0.95); }

.sb-calc {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 22px;
}
.sb-calc h4 { font-size: 0.9rem; font-weight: 800; margin-bottom: 14px; }
.sb-calc-row {
  display: flex; justify-content: space-between;
  font-size: 0.87rem;
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
}
.sb-calc-row span { color: #666; }
.sb-calc-row strong { color: #222; font-weight: 700; }
.sb-calc-row.highlight {
  background: var(--dark);
  margin: 10px -22px -22px;
  padding: 14px 22px;
  border-radius: 0 0 var(--radius) var(--radius);
  border-bottom: none;
}
.sb-calc-row.highlight span { color: rgba(255,255,255,0.6); }
.sb-calc-row.highlight strong { color: var(--accent); font-size: 1.05rem; }

.sb-related {
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 20px;
}
.sb-related h4 { font-size: 0.88rem; font-weight: 800; margin-bottom: 12px; color: #222; }
.sb-rel-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px;
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 8px;
  transition: all 0.2s;
  color: var(--text);
}
.sb-rel-item:last-child { margin-bottom: 0; }
.sb-rel-item:hover { border-color: var(--primary); background: #fff5f0; transform: translateX(3px); }
.sb-rel-region {
  font-size: 0.7rem; font-weight: 700;
  background: #f0f0f0; color: #555;
  padding: 2px 8px; border-radius: 4px;
  flex-shrink: 0;
}
.sb-rel-texts { flex: 1; }
.sb-rel-name { font-size: 0.84rem; font-weight: 700; color: #222; display: block; }
.sb-rel-amt { font-size: 0.76rem; color: var(--primary); font-weight: 600; }

/* PROC DETAIL */
.proc-detail { display: flex; flex-direction: column; gap: 0; }
.pd-step {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px dashed #eee;
}
.pd-step:last-child { border-bottom: none; }
.pd-num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pd-step:last-child .pd-num { background: var(--green); }
.pd-texts h5 { font-size: 0.93rem; font-weight: 700; margin-bottom: 3px; }
.pd-texts p { font-size: 0.82rem; color: #777; line-height: 1.5; }

/* ============ SERVICES PAGE ============ */
.svc-tabs-wrap { padding: 80px 0; }
.tab-bar {
  display: flex; gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.t-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 24px;
  border-radius: 40px;
  font-size: 0.88rem;
  font-weight: 700;
  border: 2px solid #e0e0e0;
  color: #666;
  background: #fff;
  transition: all 0.25s;
}
.t-btn.active, .t-btn:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.t-btn.active { background: var(--primary); border-color: var(--primary); }
.tab-pane { display: none; }
.tab-pane.active { display: block; animation: fadeSlideIn 0.4s ease; }
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.svc-detail-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid #eee;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.sdc-header {
  display: flex; align-items: center; gap: 20px;
  padding: 36px 40px;
  border-bottom: 1px solid #f0f0f0;
}
.sdc-icon {
  width: 68px; height: 68px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: #fff;
  flex-shrink: 0;
}
.sdc-header h2 { font-size: 1.6rem; font-weight: 900; margin-bottom: 4px; }
.sdc-header p { font-size: 0.92rem; color: var(--gray); }
.sdc-body {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0;
}
.sdc-main { padding: 36px 40px; border-right: 1px solid #f0f0f0; }
.sdc-aside { padding: 36px 28px; background: #fafafa; }
.feat-list { display: flex; flex-direction: column; gap: 14px; }
.feat-item {
  display: flex; gap: 14px;
  padding: 18px;
  background: #f9f9f9;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  transition: all 0.2s;
}
.feat-item:hover { background: #fff; box-shadow: var(--shadow); border-color: transparent; }
.feat-item i { color: var(--primary); font-size: 1rem; margin-top: 3px; flex-shrink: 0; width: 20px; }
.feat-item h5 { font-size: 0.93rem; font-weight: 700; margin-bottom: 3px; }
.feat-item p { font-size: 0.83rem; color: #666; line-height: 1.6; }
.price-widget {
  background: var(--dark);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  color: #fff;
  margin-bottom: 16px;
}
.pw-label { font-size: 0.78rem; opacity: 0.5; margin-bottom: 8px; }
.pw-val {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 4px;
}
.pw-note { font-size: 0.78rem; opacity: 0.5; margin-bottom: 20px; }
.pw-btn {
  display: block;
  background: var(--primary);
  color: #fff;
  padding: 13px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.pw-btn:hover { background: var(--primary2); }
.who-list { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.who-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.83rem; color: #555;
  padding: 8px 12px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #eee;
}
.who-item i { color: var(--primary); font-size: 0.8rem; }

/* ============ CONSULT PAGE ============ */
.consult-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  padding: 80px 0;
  align-items: start;
}
.form-card {
  background: #fff;
  border-radius: 24px;
  padding: 44px;
  border: 1px solid #eee;
  box-shadow: var(--shadow);
}
.form-card h2 { font-size: 1.5rem; font-weight: 900; margin-bottom: 6px; }
.form-card .f-intro { font-size: 0.9rem; color: var(--gray); margin-bottom: 32px; }
.f-group { margin-bottom: 20px; }
.f-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #333;
}
.f-label .req { color: var(--primary); }
.f-input {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid #eee;
  border-radius: 10px;
  font-size: 0.92rem;
  font-family: inherit;
  transition: border-color 0.2s;
  background: #fff;
  color: var(--text);
}
.f-input:focus { outline: none; border-color: var(--primary); }
textarea.f-input { resize: vertical; min-height: 120px; }
select.f-input { cursor: pointer; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f-check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.85rem; color: #666;
  line-height: 1.6;
}
.f-check input { margin-top: 3px; accent-color: var(--primary); flex-shrink: 0; }
.btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all 0.25s;
  box-shadow: var(--shadow-hot);
  margin-top: 8px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(255,77,0,0.45); }
.form-success {
  display: none;
  text-align: center;
  padding: 48px 20px;
}
.form-success .fs-icon { font-size: 3.5rem; color: var(--green); margin-bottom: 16px; }
.form-success h3 { font-size: 1.5rem; font-weight: 900; margin-bottom: 12px; }
.form-success p { color: var(--gray); line-height: 1.8; margin-bottom: 24px; }
.form-success .btn-fire { margin: 0 auto; display: inline-flex; }

.consult-right { display: flex; flex-direction: column; gap: 18px; }
.quick-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid #eee;
  box-shadow: var(--shadow);
}
.quick-card h3 { font-size: 0.95rem; font-weight: 800; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.quick-card h3 i { color: var(--primary); }
.ctype-item {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 14px;
  border: 2px solid #eee;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: all 0.2s;
  color: var(--text);
}
.ctype-item:last-child { margin-bottom: 0; }
.ctype-item:hover { border-color: var(--primary); transform: translateX(3px); }
.ct-ico {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.ct-ico.phone { background: rgba(255,77,0,0.1); color: var(--primary); }
.ct-ico.kakao { background: #FEE500; color: #3A1D1D; }
.ct-lbl { font-size: 0.72rem; color: #999; display: block; }
.ct-val { font-size: 0.92rem; font-weight: 800; color: #222; }
.ct-badge {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  background: #f0f0f0; color: #666;
  white-space: nowrap;
}

.op-times { display: flex; flex-direction: column; gap: 8px; }
.ot-row { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 7px 0; border-bottom: 1px solid #f0f0f0; }
.ot-row span { color: #666; }
.ot-row strong { font-weight: 700; color: #222; }

.ceo-mini {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 24px;
  color: #fff;
}
.ceo-mini-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.ceo-mini-ava {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff;
  flex-shrink: 0;
}
.ceo-mini-top strong { display: block; font-size: 1rem; font-weight: 800; }
.ceo-mini-top span { font-size: 0.75rem; opacity: 0.5; }
.ceo-mini p { font-size: 0.84rem; opacity: 0.65; line-height: 1.7; margin-bottom: 14px; }
.ceo-points { display: flex; flex-direction: column; gap: 6px; }
.ceo-points li { font-size: 0.82rem; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 6px; }
.ceo-points li i { color: var(--accent); font-size: 0.75rem; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .hero-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .sdc-body { grid-template-columns: 1fr; }
  .sdc-aside { border-top: 1px solid #f0f0f0; }
}
@media (max-width: 992px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--dark);
    padding: 100px 32px 40px;
    z-index: 999;
    overflow-y: auto;
    gap: 4px;
    align-items: flex-start;
  }
  .nav-links.open a { font-size: 1.1rem; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); width: 100%; }
  .drop-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 4px 16px; background: transparent; }
  .prog-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .proc-steps { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .proc-steps::before { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-sidebar .sidebar-stick { position: static; }
  .consult-layout { grid-template-columns: 1fr; }
  .urgency-items { flex-direction: column; }
  .urgency-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .ss-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  section { padding: 70px 0; }
  .hero-numbers { flex-direction: column; }
  .hero-btns { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .req-grid { grid-template-columns: 1fr; }
  .docs-wrap { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .proc-steps { grid-template-columns: 1fr 1fr; }
  .ss-inner { grid-template-columns: 1fr; }
  .urgency-inner { flex-direction: column; }
  .urgency-cta { padding: 14px 24px; justify-content: center; }
  .form-card { padding: 28px 20px; }
  .sdc-header { flex-direction: column; text-align: center; gap: 14px; }
  .sdc-main { padding: 28px 20px; }
  .sdc-aside { padding: 24px 20px; }
}
