/* Landing footer — a shared-Growvior-style dark band (#0e241b) with four columns:
   brand (mark + blurb + India line + company line + socials), Product, Studio, Legal.
   Column headers = small uppercase muted mono; links muted → white on hover.
   Also the small "~60-second videos" line on the pricing cards. */

.plan .price-len { font-size: 0.8rem; color: var(--muted); margin: -2px 0 10px; line-height: 1.35; }

.site-footer {
  margin-top: 20px;
  background: #0e241b;
  color: #cbdcd3;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.site-footer .container { padding-block: 60px 26px; }

/* --- Discover: long-tail keyword link band (internal linking / crawl) --- */
.footer-discover {
  margin-bottom: 40px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.footer-discover h4 {
  margin: 0 0 16px;
  font-family: var(--font-mono); font-weight: 600; font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: #8fa397;
}
.footer-discover ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px 14px;
}
.footer-discover a {
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #9ab7a9; font-size: 0.9rem;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.footer-discover a:hover {
  color: #fff;
  border-color: var(--aqua-2, #16a06a);
  background: rgba(22, 160, 106, 0.16);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 40px 32px;
}

/* --- brand column --- */
.footer-mark { display: flex; align-items: center; gap: 11px; }
.fb-logo {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: linear-gradient(160deg, #16a06a, #10794f);
  color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 1.15rem;
  box-shadow: 0 8px 20px -8px rgba(22, 160, 106, 0.7);
}
.fb-word { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: #fff; }
.fb-word .brand-2 { color: var(--aqua-2, #16a06a); }

.footer-brand p { margin: 14px 0 0; max-width: 30rem; font-size: 0.92rem; line-height: 1.6; color: #9ab7a9; }
.fb-india { font-size: 0.86rem !important; }
.fb-india .heart { color: #e0685f; }
.fb-company {
  font-weight: 400 !important;
  color: #7f9d8e !important;
  font-size: 0.72rem !important;
  margin-top: 10px !important;
}

.fb-social { display: flex; gap: 10px; margin-top: 16px; }
.fb-soc {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #cbdcd3;
  background: rgba(255, 255, 255, 0.04);
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}
.fb-soc:hover {
  color: #fff;
  border-color: var(--aqua-2, #16a06a);
  background: rgba(22, 160, 106, 0.16);
  transform: translateY(-1px);
}

/* --- link columns --- */
.footer-col h4 {
  margin: 0 0 14px;
  font-family: var(--font-mono); font-weight: 600; font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: #8fa397;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a {
  color: #9ab7a9; font-size: 0.94rem;
  transition: color 0.18s ease;
}
.footer-col a:hover { color: #fff; }
.footer-col a[data-auth] { cursor: pointer; }

.fb-pay {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.76rem; font-weight: 600;
  color: #cbdcd3;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 5px 12px;
}

/* --- bottom row --- */
.footer-bottom {
  margin-top: 44px; padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px 16px;
  font-size: 0.84rem; color: #7f9a8c;
}

@media (max-width: 1040px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .site-footer .container { padding-block: 44px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .footer-brand { text-align: center; }
  .footer-mark { justify-content: center; }
  .footer-brand p { margin-inline: auto; }
  .fb-social { justify-content: center; }
  .footer-discover ul { justify-content: center; }
  .footer-col ul { justify-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
}
