/* ==========================================================================
   CHRONOTASK STYLE FOOTER CSS
   ========================================================================== */

.footer-wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #FAFAFA;
  background-image: radial-gradient(circle, #CBD5E1 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  border-top: 1px solid #E2E8F0;
  box-sizing: border-box;
}

.footer-card {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 64px 32px 32px;
  position: relative;
  overflow: visible;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  box-sizing: border-box;
}

.footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-column {
  max-width: 440px;
}

.footer-brand-column .footer-logo {
  max-height: 44px;
  width: auto;
  margin-bottom: 20px;
  display: block;
}

.footer-brand-title {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.25;
  color: #0F172A;
  letter-spacing: -0.025em;
  margin: 0 0 12px 0;
}

.footer-brand-desc {
  font-size: 0.95rem;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
}

.footer-links-columns {
  display: flex;
  gap: 64px;
}

.footer-col-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94A3B8;
  margin: 0 0 16px 0;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  color: #334155;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.footer-links-list a .link-arrow {
  color: #94A3B8;
  font-size: 0.85rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.footer-links-list a:hover {
  color: #1E6FF2;
}

.footer-links-list a:hover .link-arrow {
  color: #1E6FF2;
  transform: translateX(4px);
}

/* Floating Icon Chips Showcase */
.footer-chips-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 30px 10px 40px;
  flex-wrap: wrap;
  position: relative;
}

.footer-chip {
  width: 54px;
  height: 54px;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #E8EEF5;
  box-shadow: 0 12px 24px -4px rgba(15, 23, 42, 0.1), 0 4px 8px rgba(15, 23, 42, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  cursor: default;
}

.footer-chip:hover {
  transform: translateY(-5px) scale(1.08) !important;
  box-shadow: 0 16px 32px -4px rgba(15, 23, 42, 0.15);
}

.footer-chip.chip-check {
  background: #1E6FF2;
  color: #FFFFFF;
  border-color: #1E6FF2;
  box-shadow: 0 12px 24px rgba(30, 111, 242, 0.35);
}

.footer-chip.chip-num {
  font-weight: 800;
  color: #0F172A;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
}

/* Bottom Bar */
.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid #E2E8F0;
  font-size: 0.85rem;
  color: #94A3B8;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a {
  color: #64748B;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: #1E6FF2;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  color: #64748B;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-social-btn:hover {
  color: #FFFFFF;
  background: #1E6FF2;
  border-color: #1E6FF2;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .footer-card {
    padding: 36px 24px 20px;
  }

  .footer-top-row {
    flex-direction: column;
    gap: 36px;
  }

  .footer-links-columns {
    width: 100%;
    justify-content: space-between;
    gap: 24px;
  }

  .footer-chips-showcase {
    gap: 14px;
    padding: 20px 0 30px;
  }

  .footer-chip {
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
    border-radius: 13px;
  }

  .footer-bottom-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
}