.toolkit-section {
  padding: 3rem 2rem;
  max-width: 900px;
  margin: 3rem auto;
  position: relative;
  background: linear-gradient(to bottom, #fff9fb, #fff4f7, #fff0f4);
  border-radius: 2rem;
  box-shadow: 0 10px 20px -5px rgba(255, 182, 193, 0.15),
    0 1px 4px rgba(255, 192, 203, 0.1);
  border: 1px solid rgba(255, 192, 203, 0.2);
}

.section-title {
  background-image: linear-gradient(135deg, #ec4899, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  width: 100%;
  margin-bottom: 2.5rem;
  font-weight: 600;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #ec4899, #8b5cf6);
  border-radius: 2px;
}

/* Category row */
.skill-category {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1rem;
  border-radius: 1rem;
  transition: background 0.25s ease;
}

.skill-category:not(:last-child) {
  border-bottom: 1px solid rgba(255, 192, 203, 0.25);
}

.skill-category:hover {
  background: rgba(236, 72, 153, 0.03);
}

/* Category label */
.category-label {
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  width: 130px;
  text-align: right;
}

/* Divider line between label and pills */
.skill-category::before {
  content: '';
  flex-shrink: 0;
  width: 1px;
  align-self: stretch;
  background: linear-gradient(to bottom, #ec4899, #8b5cf6);
  opacity: 0.25;
  margin-top: 0.1rem;
}

/* Pills row */
.skill-pills {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.5rem;
  row-gap: 0.75rem;
}

/* Individual pill */
.skill-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: #7c3aed;
  background: white;
  border: 1.5px solid rgba(236, 72, 153, 0.25);
  border-radius: 2rem;
  box-shadow: 0 1px 4px rgba(236, 72, 153, 0.08);
  transition: all 0.25s ease;
  cursor: default;
}

.skill-pill i {
  font-size: 1.05rem;
  line-height: 1;
}

.pill-icon {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
}

.skill-pill:hover {
  color: #7c3aed;
  border-color: rgba(236, 72, 153, 0.4);
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.12);
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .toolkit-section {
    padding: 2rem 1.25rem;
    margin: 1.5rem 1rem;
    border-radius: 1.5rem;
  }

  .skill-category {
    flex-direction: column;
    gap: 0.75rem;
  }

  .skill-category::before {
    display: none;
  }

  .category-label {
    text-align: left;
    min-width: unset;
  }
}
