.enterprise-paths-wrap {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(240, 184, 102, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.enterprise-paths-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.enterprise-path-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 14, 28, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.enterprise-path-card::before {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(240, 184, 102, 0.95), rgba(240, 184, 102, 0.18));
}

.enterprise-path-card:nth-child(2)::before {
  background: linear-gradient(90deg, rgba(120, 178, 255, 0.95), rgba(120, 178, 255, 0.18));
}

.enterprise-path-card:nth-child(3)::before {
  background: linear-gradient(90deg, rgba(255, 140, 110, 0.95), rgba(255, 140, 110, 0.18));
}

.enterprise-path-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240, 184, 102, 0.86);
  border: 1px solid rgba(240, 184, 102, 0.2);
  background: rgba(240, 184, 102, 0.08);
}

.enterprise-path-card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  line-height: 1.4;
  font-weight: 700;
  color: #f7fbff;
}

.enterprise-path-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.72;
  color: rgba(236, 240, 245, 0.74);
}

.enterprise-path-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 20px;
}

.enterprise-path-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  line-height: 1.25;
  text-align: center;
  color: rgba(236, 240, 245, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.enterprise-path-button {
  margin-top: auto;
  width: fit-content;
}

@media (max-width: 1023px) {
  .enterprise-paths-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 639px) {
  .enterprise-path-card {
    padding: 18px;
  }

  .enterprise-path-button {
    width: 100%;
    justify-content: center;
  }
}
