/* Growthr — shared landing-page footer (scoped .gfoot- to avoid collisions).
   Gives the vertical landing pages cross-links (topical clustering / no dead-ends)
   and a real footer. Inherits each page's --accent/--bg-card/--border/--text tokens. */
.gfoot {
  border-top: 1px solid var(--border, rgba(255,255,255,0.08));
  background: var(--bg, #060A10);
  padding: 72px 48px 40px;
  font-family: 'Inter', -apple-system, sans-serif;
}
.gfoot-inner { max-width: 1180px; margin: 0 auto; }
.gfoot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border, rgba(255,255,255,0.08));
}
.gfoot-brand-mark { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; color: #fff; text-decoration: none; }
.gfoot-brand p { margin-top: 14px; font-size: 13px; line-height: 1.7; color: var(--text-soft, #8B95A5); max-width: 280px; }
.gfoot-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-soft, #8B95A5); margin-bottom: 16px;
}
.gfoot-col a {
  display: block; font-size: 14px; color: var(--text, #F0F2F5); text-decoration: none;
  padding: 6px 0; transition: color 0.18s, transform 0.18s;
}
.gfoot-col a:hover { color: var(--accent, #2EC4FF); transform: translateX(3px); }
.gfoot-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  padding-top: 28px; font-size: 12px; color: var(--text-soft, #8B95A5);
}
.gfoot-bottom a { color: var(--text-soft, #8B95A5); text-decoration: none; }
.gfoot-bottom a:hover { color: var(--accent, #2EC4FF); }
.gfoot-cta {
  color: #000 !important; background: var(--accent, #2EC4FF); font-weight: 700;
  padding: 10px 20px; border-radius: 8px;
}
.gfoot-cta:hover { color: #000 !important; filter: brightness(1.08); }
@media (max-width: 860px) {
  .gfoot { padding: 56px 24px 32px; }
  .gfoot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 480px) {
  .gfoot-grid { grid-template-columns: 1fr; gap: 28px; }
}
