 .premium-footer {
      position: relative;
      background: #030712;
      color: #fff;
      overflow: hidden;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      font-family: 'Inter', sans-serif;
    }

    .footer-glow-1 {
      position: absolute;
      top: -150px;
      left: -150px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(0, 243, 255, 0.1) 0%, transparent 70%);
      filter: blur(100px);
      border-radius: 50%;
      z-index: 0;
      pointer-events: none;
    }

    .footer-glow-2 {
      position: absolute;
      bottom: -150px;
      right: -150px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(188, 19, 254, 0.08) 0%, transparent 70%);
      filter: blur(120px);
      border-radius: 50%;
      z-index: 0;
      pointer-events: none;
    }

    .footer-content-wrap {
      position: relative;
      z-index: 10;
      max-width: 1200px;
      margin: 0 auto;
      padding: 5rem 1.5rem 2rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
      gap: 3rem;
      margin-bottom: 4rem;
    }

    @media (max-width: 1024px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 640px) {
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .footer-content-wrap {
        padding: 4rem 1.5rem 1.5rem;
      }
    }

    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .footer-logo-row {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .footer-logo-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-family: 'Poppins', sans-serif;
      font-size: 1.1rem;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      position: relative;
    }

    .footer-logo-text {
      font-family: 'Poppins', sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      background: linear-gradient(to right, #ffffff, #a0aec0);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      letter-spacing: -0.5px;
    }

    .footer-desc {
      color: #94a3b8;
      font-size: 0.95rem;
      line-height: 1.6;
      max-width: 320px;
    }

    .footer-social-links {
      display: flex;
      gap: 1rem;
      margin-top: 0.5rem;
    }

    .fs-link {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      color: rgba(255, 255, 255, 0.9);
      text-decoration: none;
    }

    .fs-link svg {
      width: 20px;
      height: 20px;
      fill: currentColor;
    }

    .fs-link:hover {
      background: var(--neo-cyan);
      color: #030712;
      transform: translateY(-5px) rotate(8deg);
      box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
      border-color: var(--neo-cyan);
    }

    .footer-title {
      font-family: 'Poppins', sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: #fff;
      margin-bottom: 1.5rem;
      position: relative;
      display: inline-block;
    }

    .footer-title::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 30px;
      height: 2px;
      background: var(--brand-gradient, linear-gradient(135deg, #00d2ff 0%, #9d50bb 100%));
      border-radius: 2px;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links a {
      color: #94a3b8;
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      cursor: pointer;
    }

    .footer-links a::before {
      content: '→';
      color: var(--brand-cyan, #00d2ff);
      margin-right: 8px;
      opacity: 0;
      transform: translateX(-10px);
      transition: all 0.3s ease;
      font-size: 1.1rem;
    }

    .footer-links a:hover {
      color: #00d2ff;
      transform: translateX(5px);
    }

    .footer-links a:hover::before {
      opacity: 1;
      transform: translateX(0);
    }

    .footer-contact li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: #94a3b8;
      font-size: 0.95rem;
      line-height: 1.5;
      margin-bottom: 1.25rem;
    }

    .footer-contact-icon {
      min-width: 20px;
      max-width: 20px;
      color: var(--brand-cyan, #00d2ff);
      margin-top: 2px;
    }

    .fc-link {
      color: #94a3b8;
      transition: color 0.3s;
      text-decoration: none;
    }

    .fc-link:hover {
      color: #00d2ff;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-copyright {
      color: #64748b;
      font-size: 0.85rem;
    }

    .footer-legal-links {
      display: flex;
      gap: 1.5rem;
    }

    .footer-legal-links a {
      color: #64748b;
      font-size: 0.85rem;
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-legal-links a:hover {
      color: #fff;
    }