/* ── RESET INSIDE FOOTER ── */
.footer *,
.footer *::before,
.footer *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
 
/* ── FOOTER WRAPPER ── */
.footer {
  width: 100%;
  display: block;
  clear: both;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  font-family: 'Inter', 'Roboto', sans-serif;
  margin-top: 20px;
}
 
/* ── TOP: logo + columns ── */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 3rem 5vw 2.5rem;
  border-bottom: 1px solid #f0f1f5;
}
 
/* ── BRAND COLUMN ── */
.footer-logo-word {
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  letter-spacing: 0.08em;
}
 
.footer-brand p {
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  margin-top: 1rem;
  max-width: 240px;
}
 
/* ── SOCIAL ICONS ── */
.social-row {
  display: flex;
  gap: 8px;
}
 
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  text-decoration: none;
  transition: border-color .15s, color .15s, background .15s;
  flex-shrink: 0;
}
 
.social-btn:hover {
  border-color: #2e52c8;
  color: #2e52c8;
  background: #eff2ff;
}
 
.social-btn svg {
  width: 18px;
  height: 18px;
}
 
/* ── NAV COLUMNS ── */
.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 0.9rem;
}
 
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
 
.footer-col ul li a {
  font-size: 13.5px;
  color: #374151;
  text-decoration: none;
  transition: color .15s;
}
 
.footer-col ul li a:hover { color: #2e52c8; }
 
.badge-new {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  background: #dbeafe;
  color: #1d4ed8;
  border-radius: 4px;
  padding: 1px 6px;
  margin-left: 6px;
  vertical-align: middle;
  letter-spacing: 0.02em;
}
 
/* ── TRUST BAR ── */
.footer-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem 1.5rem;
  padding: 1rem 5vw;
  border-bottom: 1px solid #f0f1f5;
  flex-wrap: wrap;
  background: #fafafa;
}
 
.trust-label {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 500;
  white-space: nowrap;
}
 
.trust-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
 
.trust-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 20px;
  padding: 4px 11px;
  font-size: 12px;
  color: #16a34a;
  font-weight: 500;
}
 
.trust-pill svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
 
/* ── BOTTOM BAR ── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5vw;
  background: #f5f6fa;
  flex-wrap: wrap;
  gap: 0.5rem;
}
 
.footer-copy {
  font-size: 12px;
  color: #9ca3af;
}
 
.footer-legal {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
 
.footer-legal a {
  font-size: 12px;
  color: #9ca3af;
  text-decoration: none;
  transition: color .15s;
}
 
.footer-legal a:hover { color: #374151; }
 
/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
 
/* Tablet */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
 
  .footer-brand {
    grid-column: 1 / -1;
  }
 
  .footer-brand p { max-width: 100%; }
}
 
/* Mobile */
@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.25rem 1.75rem;
  }
 
  .footer-brand { grid-column: auto; }
 
  .footer-col { display: none; }
 
  .footer-trust {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem;
    gap: 0.75rem;
  }
 
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem;
  }
 
  .footer-legal { gap: 0.75rem; }
 
  .trust-pills { gap: 6px; }
}