/* ============================================
   Final CTA
   ============================================ */
.final-cta-section {
  padding: clamp(80px, 12vw, 140px) 0;
}
.final-cta-card {
  position: relative;
  background: linear-gradient(135deg, #005555 0%, #006565 50%, #007B78 100%);
  border-radius: clamp(24px, 4vw, 48px);
  padding: clamp(48px, 8vw, 96px) clamp(28px, 6vw, 80px);
  overflow: hidden;
  color: #fff;
  box-shadow: 0 40px 100px rgba(0, 101, 101, 0.36);
}
.final-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 20%, rgba(187, 232, 228, 0.20), transparent 60%),
    radial-gradient(ellipse 500px 400px at 80% 80%, rgba(56, 180, 74, 0.16), transparent 65%);
  pointer-events: none;
}

.cta-leaves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
}
.cta-leaf {
  position: absolute;
  font-size: 24px;
  animation: leaf-drift 12s linear infinite;
}
.cta-leaf-0 { top: 10%; left: 8%; animation-delay: 0s; }
.cta-leaf-1 { top: 30%; left: 88%; animation-delay: 2s; font-size: 32px; }
.cta-leaf-2 { top: 70%; left: 5%; animation-delay: 4s; font-size: 20px; }
.cta-leaf-3 { top: 80%; left: 82%; animation-delay: 6s; }
.cta-leaf-4 { top: 20%; left: 45%; animation-delay: 8s; font-size: 18px; }
.cta-leaf-5 { top: 55%; left: 92%; animation-delay: 3s; font-size: 22px; }
.cta-leaf-6 { top: 90%; left: 55%; animation-delay: 5s; }
.cta-leaf-7 { top: 5%; left: 72%; animation-delay: 7s; }
@keyframes leaf-drift {
  0% { transform: translate(0, 0) rotate(0deg); opacity: 0.35; }
  50% { opacity: 0.5; }
  100% { transform: translate(30px, -20px) rotate(360deg); opacity: 0.35; }
}

.cta-mascot {
  position: absolute;
  right: clamp(-40px, -3vw, -20px);
  bottom: clamp(-60px, -6vw, -40px);
  width: clamp(180px, 24vw, 300px);
  opacity: 0.20;
  animation: float-mascot 6s ease-in-out infinite;
  pointer-events: none;
}
.cta-mascot img { width: 100%; filter: brightness(0) invert(1) opacity(0.9); }

.final-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.final-cta-title {
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  text-wrap: balance;
}
.accent-cream {
  background: linear-gradient(135deg, #BBE8E4 0%, #E8F5D4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.final-cta-body {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 40px;
  text-wrap: pretty;
}
.final-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-cream {
  background: #FBF9F1;
  color: var(--deep-teal);
}
.btn-cream:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   푸터
   ============================================ */
.site-footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border-hairline);
  background: rgba(245, 244, 236, 0.5);
  position: relative;
  z-index: 2;
}
.footer-inner {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) 2fr;
  gap: 48px;
  margin-bottom: 48px;
  align-items: start;
}
@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
.footer-logo {
  height: 88px;   /* 40 → 88 (2배 이상) */
  width: auto;
  margin-bottom: 20px;
  object-fit: contain;
}
@media (max-width: 640px) {
  .footer-logo { height: 72px; }
}
.footer-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 6px 0;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--deep-teal); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-hairline);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-tertiary);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-locale {
  display: flex;
  align-items: center;
  gap: 6px;
}
