/* ===== SHARED FOOTER ===== */
.footer { background: radial-gradient(ellipse 80% 130% at 10% 0%, rgba(212,99,126,.10) 0%, transparent 65%), radial-gradient(ellipse 70% 100% at 92% 110%, rgba(26,157,87,.08) 0%, transparent 65%), rgba(255,255,255,0.78); -webkit-backdrop-filter: blur(48px) saturate(1.8); backdrop-filter: blur(48px) saturate(1.8); border-top: 1px solid rgba(255,255,255,0.60); color: var(--ink); padding: 88px 0 40px; position: relative; isolation: isolate; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 64px; }

/* BRAND */
.footer-brand { display: flex; flex-direction: column; gap: 18px; flex-shrink: 0; }
.footer-logo img { height: 40px; width: auto; display: block; }
.footer-brand address { font-style: normal; font-size: var(--fs-note); color: var(--sub); line-height: 1.9; font-weight: 300; max-width: 340px; }
.footer-group { margin-top: 10px; }
.footer-group-label { display: block; font-size: var(--fs-note); font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--sub); margin-bottom: 10px; }
.footer-group-link { display: inline-flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.90); border: 1px solid var(--line); border-radius: 9999px; padding: 12px 22px; text-decoration: none; color: var(--ink); font-size: 13px; font-weight: 500; transition: all .3s cubic-bezier(.4,0,.2,1); }
.footer-group-link:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,.10); }
.footer-group-link img { height: 20px; width: auto; display: block; }
.footer-group-link .fg-arrow { color: var(--sub); font-size: 12px; transition: transform .3s cubic-bezier(.4,0,.2,1); }
.footer-group-link:hover .fg-arrow { transform: translate(2px, -2px); }

/* LINK COLUMNS */
.footer-cols { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 16px; min-width: 92px; }
.footer-col-title { font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--pink-dark); margin-bottom: 2px; }
.footer-col a { color: var(--sub); text-decoration: none; font-size: var(--fs-note); font-weight: 400; transition: color .25s; }
.footer-col a:hover { color: var(--ink); }

/* PAGE TOP */
.footer-pagetop-row { display: flex; justify-content: flex-end; margin: 28px 0 40px; }
.footer-pagetop { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; color: var(--sub); font-size: var(--fs-note); font-weight: 600; letter-spacing: .14em; transition: color .3s; }
.footer-pagetop-btn { width: 44px; height: 44px; border-radius: 9999px; background: var(--pink); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 15px; transition: all .35s cubic-bezier(.4,0,.2,1); box-shadow: 0 4px 14px rgba(212,99,126,.3); }
.footer-pagetop:hover { color: var(--ink); }
.footer-pagetop:hover .footer-pagetop-btn { background: var(--pink-dark); transform: translateY(-3px); box-shadow: 0 8px 22px rgba(212,99,126,.4); }

/* DIVIDER + BOTTOM */
.footer-divider { border: none; border-top: 1px solid rgba(0,0,0,.10); margin: 48px 0 28px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.footer-copy { font-size: var(--fs-note); color: var(--sub); font-weight: 300; }
.footer-privacy { font-size: var(--fs-note); color: var(--sub); text-decoration: none; font-weight: 300; transition: color .3s; }
.footer-privacy:hover { color: var(--ink); }

@media (max-width: 900px) {
  .footer-top { flex-direction: column; gap: 44px; }
  .footer-cols { gap: 32px 44px; }
}
@media (max-width: 768px) {
  .footer { padding: 56px 0 32px; }
  .footer-top { gap: 44px; }
  .footer-cols { gap: 28px 32px; }
  .footer-col { min-width: 120px; }
  .footer-pagetop-row { justify-content: flex-start; margin: 8px 0 32px; }
  .footer-divider { margin-top: 48px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}
