/* Finale CTA */
.finale-section {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
}
.finale-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.finale-bg svg { width: 100%; height: 100%; }
.finale-inner { position: relative; z-index: 2; }

.finale-block {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.finale-title {
  font-family: var(--serif);
  font-size: 52px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: white;
  margin: 20px 0 8px;
  font-weight: 500;
}
.ft-accent {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
}
.finale-desc {
  font-size: 17px;
  line-height: 1.8;
  color: #c8d1da;
  margin: 24px 0 40px;
}
.finale-cta { margin-bottom: 60px; }

.btn-finale-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 16px;
  border-radius: 2px;
  transition: all 250ms;
  border: 1px solid var(--gold);
  box-shadow: 0 8px 24px -8px rgba(212, 175, 55, 0.5);
}
.btn-finale-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(212, 175, 55, 0.6);
}
.btn-finale-primary .arrow { transition: transform 220ms; }
.btn-finale-primary:hover .arrow { transform: translateX(4px); }

.finale-support {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.fs-item .fs-lbl {
  font-size: 11px;
  color: #9aa4ae;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.fs-val {
  font-family: var(--serif);
  font-size: 24px;
  color: white;
  font-weight: 500;
}
.fs-unit {
  font-size: 13px;
  color: #9aa4ae;
  margin-left: 4px;
  font-weight: 400;
}
.fs-sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: #b8c5d1;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.fb-mark {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 20px;
}
.fbm-k {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 32px;
}
.fbm-name {
  font-family: var(--serif);
  color: white;
  font-size: 22px;
}
.fb-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #9aa4ae;
  margin: 0 0 20px;
}
.fb-url {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.fc-title {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}
.fc ul { list-style: none; padding: 0; margin: 0; }
.fc li { margin-bottom: 12px; }
.fc a {
  font-size: 14px;
  color: #b8c5d1;
  transition: color 200ms;
}
.fc a:hover { color: var(--gold); }

/* 외부 링크(k-trust.kr) 표시 · 푸터 */
.fc-ext {
  display: inline-block;
  margin-left: 4px;
  font-size: 11px;
  color: var(--gold);
  transition: transform 220ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.fc a:hover .fc-ext {
  transform: translate(2px, -2px);
}

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.fb-copy {
  font-size: 12px;
  color: #6b7885;
}
.fb-note {
  font-size: 10px;
  color: #6b7885;
  max-width: 500px;
  line-height: 1.6;
  text-align: right;
}

@media (max-width: 900px) {
  .finale-title { font-size: 32px; }
  .finale-support { flex-direction: column; gap: 20px; }
  .fs-sep { width: 32px; height: 1px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .fb-note { text-align: left; max-width: 100%; }
}
