@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Orbitron:wght@400;500;700;900&display=swap');

:root {
  --bg-primary: #0d0d0d;
  --bg-secondary: #1a1a1a;
  --bg-card: #1f1f1f;
  --text-primary: #f5f5f5;
  --text-secondary: #b0b0b0;
  --text-muted: #666;
  --purple-primary: #9333ea;
  --purple-light: #a855f7;
  --purple-dark: #7c3aed;
  --purple-glow: rgba(147, 51, 234, 0.4);
  --accent-gradient: linear-gradient(135deg, #9333ea 0%, #a855f7 50%, #7c3aed 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

.kenna-footer {
  background: transparent;
  border-top: 1px solid rgba(147, 51, 234, 0.15);
  padding: 60px 30px 30px;
  margin-top: 80px;
  font-family: 'Inter', sans-serif;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(147, 51, 234, 0.15);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all var(--transition-normal);
}

.footer-logo-link:hover .footer-logo-text {
  filter: drop-shadow(0 0 15px rgba(147, 51, 234, 0.5));
}

.footer-logo-icon {
  font-size: 28px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: footerPulse 3s ease-in-out infinite;
}

@keyframes footerPulse {
  0%, 100% { 
    filter: drop-shadow(0 0 8px rgba(147, 51, 234, 0.4));
  }
  50% { 
    filter: drop-shadow(0 0 15px rgba(147, 51, 234, 0.7));
  }
}

.footer-logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 26px;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
  transition: all var(--transition-normal);
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-nav-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-nav-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(147, 51, 234, 0.3);
}

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

.footer-nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition-fast);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-nav-link::before {
  content: '→';
  opacity: 0;
  transform: translateX(-5px);
  color: var(--purple-primary);
  transition: all var(--transition-fast);
  font-size: 12px;
}

.footer-nav-link:hover {
  color: var(--text-primary);
  padding-left: 5px;
}

.footer-nav-link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-social-section {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.15) 0%, rgba(168, 85, 247, 0.1) 100%);
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: 30px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition-normal);
}

.social-btn:hover {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.25) 0%, rgba(168, 85, 247, 0.15) 100%);
  border-color: var(--purple-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(147, 51, 234, 0.25);
}

.social-icon {
  font-size: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-copyright {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-copyright .trademark {
  font-weight: 600;
  color: var(--purple-light);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 12px;
  transition: all var(--transition-fast);
}

.legal-link:hover {
  color: var(--purple-light);
}

.legal-separator {
  color: var(--text-muted);
  font-size: 10px;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
}

.social-icon-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(147, 51, 234, 0.2);
  border-radius: 50%;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--transition-normal);
}

.social-icon-link:hover {
  background: rgba(147, 51, 234, 0.15);
  border-color: var(--purple-primary);
  color: var(--purple-light);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(147, 51, 234, 0.25);
}

.social-icon-link .icon {
  font-size: 16px;
  transition: all var(--transition-fast);
}

.social-icon-link:hover .icon {
  color: var(--purple-primary);
}

.footer-section {
  max-width: 800px;
  margin: 20px auto 0;
  padding: 25px;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(147, 51, 234, 0.2);
  border-radius: 12px;
  text-align: left;
  color: var(--text-secondary);
  display: none;
}

.footer-section.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-social-section {
    grid-column: span 2;
    justify-content: center;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .kenna-footer {
    padding: 40px 20px 25px;
    margin-top: 50px;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }
  
  .footer-brand {
    align-items: center;
  }
  
  .footer-nav {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-nav-section {
    align-items: center;
  }
  
  .footer-nav-title {
    width: 100%;
    text-align: center;
  }
  
  .footer-nav-list {
    align-items: center;
  }
  
  .footer-social-section {
    grid-column: auto;
    justify-content: center;
    margin-top: 10px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    align-items: center;
  }
  
  .footer-legal-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .social-btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-logo-text {
    font-size: 22px;
  }
  
  .footer-logo-icon {
    font-size: 24px;
  }
  
  .footer-nav-title {
    font-size: 11px;
  }
  
  .footer-nav-link {
    font-size: 13px;
  }
}

