/* Footer Styles */
.site-footer {
  background: #fff;
  padding: 0;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 15px;
  color: #222;
  border-top: 1px solid #f0f0f0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: stretch;
}

.footer-brand-col {
  flex: 0 0 auto;
}

.footer-logo {
  color: #2979FF;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-partnership-link {
  display: inline-block;
  color: #2979FF;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.footer-partnership-link:hover {
  text-decoration: underline;
}

.footer-company-legal {
  font-size: 13px;
  line-height: 1.65;
  color: #3d3d3d;
  flex: 1 1 auto;
  min-width: 0;
  padding: 28px 32px;
  background: linear-gradient(180deg, #fafbfc 0%, #f4f6f8 100%);
  border: 1px solid #e8eaed;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.footer-legal-company {
  margin: 0 0 20px 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #1a1a1a;
}

.footer-legal-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-legal-section {
  margin: 0;
  padding: 0 0 16px 0;
  border-bottom: 1px solid #e4e7ec;
}

.footer-legal-section--last {
  padding-bottom: 0;
  border-bottom: none;
}

.footer-legal-lines {
  margin: 0 0 8px 0;
}

.footer-legal-lines:last-child {
  margin-bottom: 0;
}

.footer-legal-section .footer-legal-lines + .footer-legal-lines {
  margin-top: 4px;
}

.footer-legal-mono {
  margin: 8px 0 0 0;
  font-family: ui-monospace, "Cascadia Code", "Segoe UI Mono", monospace;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: #2c2c2c;
  word-break: break-all;
}

@media (min-width: 901px) {
  .footer-content {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    padding: 44px 40px 40px;
  }

  .footer-brand-col {
    padding-top: 4px;
    min-width: 160px;
  }

  .footer-company-legal {
    max-width: none;
    flex: 1;
  }

  .footer-legal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 28px;
    align-items: start;
  }

  .footer-legal-section {
    padding: 0;
    border-bottom: none;
  }

  .footer-legal-section--last {
    padding-bottom: 0;
  }
}

@media (min-width: 1100px) {
  .footer-legal-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px 28px;
  }
}

@media (max-width: 900px) {
  .footer-content {
    padding: 28px 16px 32px;
  }

  .footer-company-legal {
    padding: 22px 20px;
  }
}
