body.landing-mode .border-slate-200 {
  border-color: #e2e8f0 !important;
}

body.landing-mode .bg-green-500 {
  background-color: #22c55e !important;
}

/* ==================== FOOTER STYLES ==================== */

.site-footer {
  position: relative;
  z-index: 20;
  padding: 0;
  margin-top: 2rem;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.95) 0%, rgba(241, 245, 249, 0.98) 100%);
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.site-footer .max-w-7xl {
  padding: 1.5rem 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.site-footer .flex-wrap > div {
  background: white;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.5);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 180px;
}

.site-footer .w-10.h-10 {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.site-footer .flex.flex-col {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-footer .text-xs {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #64748b;
}

.site-footer .text-sm {
  font-size: 0.875rem;
  font-weight: 600;
}

.site-footer a {
  text-decoration: none;
}

/* Mobile layout */
@media (max-width: 768px) {
  .site-footer .max-w-7xl {
    flex-direction: row;
    gap: 0.75rem;
    padding: 1rem;
  }
  
  .site-footer .flex-wrap > div {
    flex: 1 1 calc(50% - 0.375rem);
    max-width: calc(50% - 0.375rem);
    min-width: unset;
    padding: 0.75rem;
    flex-direction: column;
    text-align: center;
  }
  
  .site-footer .w-10.h-10 {
    width: 2rem;
    height: 2rem;
  }
  
  .site-footer .text-xs {
    font-size: 0.65rem;
  }
  
  .site-footer .text-sm {
    font-size: 0.75rem;
  }
}

/* Dark mode */
body.dark .site-footer {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.98) 100%);
  border-top-color: rgba(71, 85, 105, 0.8);
}

body.dark .site-footer .flex-wrap > div {
  background: #1e293b;
  border-color: rgba(71, 85, 105, 0.5);
}

body.dark .site-footer .text-xs {
  color: #94a3b8;
}

body.dark .site-footer .text-slate-800 {
  color: #f1f5f9;
}

/* ==================== MOBILE MENU BUTTON ==================== */

.mobile-menu-btn {
  display: none !important;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block !important;
  }
  
  /* Mobile Menu */
  .mobile-menu-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
  }
  
  .mobile-menu-wrapper.active {
    display: block;
  }
  
  .mobile-menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
  }
  
  .mobile-menu-dropdown {
    position: absolute;
    top: 60px;
    left: 16px;
    right: 16px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }
  
  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
    border-radius: 16px 16px 0 0;
  }
  
  .mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    border: none;
    background: transparent;
    color: #334155;
    font-size: 15px;
    font-weight: 500;
    text-align: right;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
  }
  
  .mobile-menu-item:hover {
    background: #f1f5f9;
  }
  
  .mobile-menu-item.active {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
  }
  
  .mobile-menu-divider {
    height: 8px;
    background: #f1f5f9;
  }
}

/* Print */
@media print {
  .site-footer {
    display: none;
  }
}