/* Brand Icon Grid */
.brand-icon-grid {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}

.brand-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background-color: #0a0a0a;
  border: 1px solid #1a1a1a;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.brand-icon-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #D1A242, #FEF9B6, #D1A242);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.brand-icon-link:hover {
  transform: translateY(-4px);
  border-color: #D1A242;
  box-shadow: 0 6px 20px rgba(209, 162, 66, 0.2);
}

.brand-icon-link:hover::before {
  transform: scaleX(1);
}

.brand-icon {
  transition: transform 0.3s ease;
}

.brand-icon-link:hover .brand-icon {
  transform: scale(1.1);
}
