.consultants-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.consultants-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.consultants-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    rgba(51, 12, 179, 0.03) 2px,
    transparent 2px
  );
  background-size: 30px 30px;
  pointer-events: none;
}

.consultants-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.consultants-header .section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #330cb3;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.consultants-header .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #330cb3;
  border-radius: 2px;
}

.consultants-subtitle-text {
  font-size: 1.2rem;
  color: #6b7280;
  max-width: 800px;
  margin: 0 auto;
}

.consultants-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.consultant-card-v2 {
  background: #ffffff;
  border-radius: 24px;
  padding: 0;
  border: 1px solid rgba(51, 12, 179, 0.1);
  box-shadow: 0 10px 30px rgba(51, 12, 179, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.consultant-card-v2:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(51, 12, 179, 0.1);
  border-color: rgba(51, 12, 179, 0.3);
}

.consultant-type-badge {
  background: #330cb3;
  color: white;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  align-self: flex-start;
  border-radius: 0 0 16px 0;
  letter-spacing: 0.5px;
}

.consultant-content {
  padding: 30px;
  flex-grow: 1;
}

.consultant-role {
  font-size: 1.4rem;
  color: #1f2937;
  margin-bottom: 12px;
  font-weight: 700;
}

.consultant-description {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.consultant-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(51, 12, 179, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-icon img {
  width: 20px;
  height: 20px;
  filter: invert(14%) sepia(85%) saturate(4529%) hue-rotate(253deg)
    brightness(81%) contrast(100%);
}

.detail-text h4 {
  font-size: 0.9rem;
  color: #330cb3;
  margin-bottom: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-text p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 1200px) {
  .consultants-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .consultants-header .section-title {
    font-size: 2.2rem;
  }
  .consultants-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}
