.site-footer {
    background: linear-gradient(180deg, #0a0f1e 0%, #050a14 100%);
    color: #e5e7eb;
    padding: 80px 0 0;
    margin-top: 120px;
    position: relative;
    overflow: hidden;
  }
  
  .site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
  }
  
  .site-footer::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  
  .footer-brand .logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .footer-brand .logo:hover {
    transform: translateY(-2px);
    opacity: 0.9;
  }
  
  .footer-brand .logo-img {
    max-width: 160px;
    height: auto;
    display: block;
    filter: brightness(1.1);
  }
  
  .footer-brand > div {
    color: #9ca3af;
    font-size: 15px;
    line-height: 1.6;
    max-width: 340px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }

  .footer-column h5 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 20px 0;
    letter-spacing: 0.3px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-column h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--brand, #0b66ff), transparent);
  }
  
  .footer-column h5:not(:first-child) {
    margin-top: 32px;
  }

  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-column li {
    margin-bottom: 12px;
  }

  .footer-column a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
  }
  
  .footer-column a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--brand, #0b66ff);
    transition: width 0.3s ease;
  }

  .footer-column a:hover {
    color: #fff;
    transform: translateX(4px);
  }
  
  .footer-column a:hover::before {
    width: 100%;
  }

  .site-foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #6b7280;
    position: relative;
    z-index: 1;
  }

  .foot-bottom-links {
    display: flex;
    gap: 32px;
  }

  .foot-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .foot-bottom-links a:hover {
    color: var(--brand, #0b66ff);
  }

  @media (max-width: 968px) {
    .footer-inner {
      grid-template-columns: 1fr;
      gap: 50px;
    }
    
    .footer-links {
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
    }
  }

  @media (max-width: 768px) {
    .site-footer {
      padding: 60px 0 0;
      margin-top: 80px;
    }
    
    .footer-links {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    
    .site-foot-bottom {
      flex-direction: column;
      gap: 16px;
      text-align: center;
    }
    
    .foot-bottom-links {
      gap: 20px;
    }
  }
