/* CleverlyAI Footer */

.site-footer {
  width: 100%;
  border-top: 1px solid #eaeaea;
  background: #fafafa;
  padding: 48px 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
}

.site-footer * { box-sizing: border-box; }

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 56px;
}

.footer-left {
  flex: 1 1 320px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  align-self: stretch;
  gap: 14px;
}

.footer-mark {
  display: flex;
  align-items: center;
  gap: 12px;                 /* slightly more breathing room */
  color: #6b7788;            /* closer to old muted blue-gray */
  font-size: 15px;           /* slightly larger like old */
  font-weight: 600;
  letter-spacing: 0.01em;
}

.footer-mark-logo {
  width: 22px;               /* bigger like old */
  height: 22px;
  opacity: 0.95;             /* stronger presence */
  transform: translateY(1px);/* perfect baseline alignment */
  filter: saturate(1.05);    /* subtle richness like original */
}

.footer-social {
  margin-top: 0;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  text-decoration: none;
  color: #5b6776;
  transition: color 0.15s ease;
}

.footer-social-link:hover {
  color: #111;
}

.footer-social-icon {
  width: 17px;
  height: 17px;
  display: block;
}


.footer-links {
  display: flex;
  gap: 72px;
  justify-content: flex-end;
}

.footer-column {
  min-width: 160px;
}

.footer-column h4 {
  font-size: 12px;
  font-weight: 800;
  color: #111;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-column a {
  display: block;
  text-decoration: none;
  color: #5b6776;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.15s ease;
}

.footer-column a:hover {
  color: #111;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 28px;
  }

  .footer-left {
    align-self: auto;
    justify-content: flex-start;
  }

  .footer-social {
    margin-top: 8px;
  }

  .footer-links {
    width: 100%;
    justify-content: flex-start;
    gap: 36px;
    flex-wrap: wrap;
  }
}
