
.footer[data-v-6fceeff4] {
  position: relative;
  padding: 5rem 2rem 2rem;
  background: #0B0F19;
  overflow: hidden;
}

/* Background Effects */
.footer-bg[data-v-6fceeff4] {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.bg-gradient[data-v-6fceeff4] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
}
.grid-pattern[data-v-6fceeff4] {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(99, 102, 241, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
          mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}
.glow-orb[data-v-6fceeff4] {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(60px);
}

/* Container */
.footer-container[data-v-6fceeff4] {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Main Content */
.footer-main[data-v-6fceeff4] {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Brand Column */
.brand-column[data-v-6fceeff4] {
  max-width: 300px;
}
.logo[data-v-6fceeff4] {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.logo-image[data-v-6fceeff4] {
  height: 36px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.brand-description[data-v-6fceeff4] {
  font-size: 0.9375rem;
  color: #64748B;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.social-links[data-v-6fceeff4] {
  display: flex;
  gap: 0.75rem;
}
.social-link[data-v-6fceeff4] {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 10px;
  color: #94A3B8;
  transition: all 0.3s ease;
}
.social-link[data-v-6fceeff4]:hover {
  background: rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.5);
  color: #fff;
  transform: translateY(-2px);
}
.social-link svg[data-v-6fceeff4] {
  width: 18px;
  height: 18px;
}

/* Links Columns */
.links-column[data-v-6fceeff4] {
  display: flex;
  flex-direction: column;
}
.column-title[data-v-6fceeff4] {
  font-size: 0.875rem;
  font-weight: 600;
  color: #F1F5F9;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.links-list[data-v-6fceeff4] {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-link[data-v-6fceeff4] {
  font-size: 0.9375rem;
  color: #64748B;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
.footer-link[data-v-6fceeff4]::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #6366F1, #22C55E);
  transition: width 0.3s ease;
}
.footer-link[data-v-6fceeff4]:hover {
  color: #fff;
}
.footer-link[data-v-6fceeff4]:hover::after {
  width: 100%;
}

/* Divider */
.footer-divider[data-v-6fceeff4] {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.divider-line[data-v-6fceeff4] {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
}
.divider-icon[data-v-6fceeff4] {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 8px;
  color: #6366F1;
}
.divider-icon svg[data-v-6fceeff4] {
  width: 16px;
  height: 16px;
}

/* Bottom Bar */
.footer-bottom[data-v-6fceeff4] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.copyright[data-v-6fceeff4] {
  font-size: 0.875rem;
  color: #64748B;
}
.tech-stack[data-v-6fceeff4] {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tech-badge[data-v-6fceeff4] {
  padding: 0.375rem 0.75rem;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  color: #6366F1;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
.footer-main[data-v-6fceeff4] {
    grid-template-columns: repeat(2, 1fr);
}
.brand-column[data-v-6fceeff4] {
    grid-column: 1 / -1;
    max-width: 100%;
}
}
@media (max-width: 640px) {
.footer-main[data-v-6fceeff4] {
    grid-template-columns: 1fr;
    gap: 2rem;
}
.footer-bottom[data-v-6fceeff4] {
    flex-direction: column;
    text-align: center;
}
.tech-stack[data-v-6fceeff4] {
    justify-content: center;
}
}
